home *** CD-ROM | disk | FTP | other *** search
- /* tabsize.h
- * controls the program wide tab size, which is used by
- * all routines that need to print tabs.
- *
- * written by: G. Eric Engstrom
- */
-
- #ifndef __TABSIZE_H
- #define __TABSIZE_H
-
- #ifdef __cplusplus
- extern "C"
- {
- #endif
-
- void __cdecl tab_sizeset(unsigned short newtabsize);
- void __cdecl tab_sizeputenv(unsigned short newtabsize);
- unsigned short __cdecl tab_sizeget(void);
- unsigned short __cdecl tab_sizegetenv(void);
-
- extern unsigned short _tab_size;
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-